home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / byobu < prev    next >
Text File  |  2009-10-11  |  2KB  |  53 lines

  1. #!/bin/sh -e
  2. #
  3. #    byobu - screen wrapper script
  4. #    Copyright (C) 2008-2009 Canonical Ltd.
  5. #
  6. #    Authors: Dustin Kirkland <kirkland@canonical.com>
  7. #
  8. #    This program is free software: you can redistribute it and/or modify
  9. #    it under the terms of the GNU General Public License as published by
  10. #    the Free Software Foundation, version 3 of the License.
  11. #
  12. #    This program is distributed in the hope that it will be useful,
  13. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #    GNU General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  
  20. PKG="byobu"
  21. VERSION=2.38
  22.  
  23. # Add a version argument for debugging purposes
  24. if [ "$1" = "-v" ]; then
  25.     echo "$PKG version $VERSION"
  26.     screen -v
  27.     exit 0
  28. fi
  29.  
  30. # Nesting byobu inside of screen doesn't work well
  31. if [ -n "$STY" ] || [ "$TERM" = "screen-bce" ]; then
  32.     echo `gettext "Exit the current screen session to run $PKG"`
  33.     exit 1
  34. fi
  35.  
  36. # Sanitize the environment
  37. byobu-janitor --force
  38.  
  39. # Set window title until https://bugs.launchpad.net/bugs/338722 is fixed in screen
  40. printf "\033]0;${USER}@$(hostname) - ${PKG}\007"
  41.  
  42. # Launch motd+shell, unless the user has default windows set to launch
  43. [ -x "$SHELL" ] || SHELL="/bin/sh"
  44. DEFAULT_WINDOW="$SHELL -c motd+shell"
  45. grep -qs "^[^#]" "$HOME/.$PKG/windows" && DEFAULT_WINDOW=
  46.  
  47. # Now let's execute screen!
  48. if [ "$#" = "0" ]; then
  49.     exec screen -c "/usr/share/$PKG/profiles/byoburc" $DEFAULT_WINDOW
  50. else
  51.     exec screen -c "$HOME/.$PKG/profile" "$@"
  52. fi
  53.